projects
/
gtk4.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ddd044f
)
listbox: Fix compiler warning
author
Timm Bäder
<mail@baedert.org>
Sat, 13 Apr 2019 04:26:17 +0000
(06:26 +0200)
committer
Timm Bäder
<mail@baedert.org>
Sat, 13 Apr 2019 04:26:17 +0000
(06:26 +0200)
gtk/gtklistbox.c
patch
|
blob
|
history
diff --git
a/gtk/gtklistbox.c
b/gtk/gtklistbox.c
index bde8540dc76adc677505f0478f9de8d5c60a1a4b..5ad3d5950fb1ba1983f70fcbe7c761b5cb72a8b9 100644
(file)
--- a/
gtk/gtklistbox.c
+++ b/
gtk/gtklistbox.c
@@
-3659,7
+3659,7
@@
gtk_list_box_get_show_separators (GtkListBox *box)
{
GtkListBoxPrivate *priv = BOX_PRIV (box);
- g_return_
if_fail (GTK_IS_LIST_BOX (box)
);
+ g_return_
val_if_fail (GTK_IS_LIST_BOX (box), FALSE
);
return priv->show_separators;
}